home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-11-25 | 396 b | 9 lines | [TEXT/ToyS] |
- tell application "FileMaker Pro"
- Show (every Record of window "original" whose first Cell = "Fred")
- Sort first Layout of window "Original" by Field "surname" of window "original"
- copy (Record count in window "original") to x
- repeat with i from 1 to x
- copy Cell 1 thru Cell 8 of Record i of window "original" to recordx
- make Record at window "Reduce" with data recordx
- end repeat
- end tell